home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / users.sql < prev    next >
Text File  |  2000-05-12  |  719b  |  19 lines

  1. /* RCSVER $Id: users.sql,v 1.2 1999-02-24 16:20:49-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        users.sql
  6. * Date:        02/17/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the users table. This table contains a list of
  9. *        all users of the system, along with the users real name.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE users
  13. (
  14.     user_id        NUMBER(38),    /* ID of user */
  15.     user_name    VARCHAR2(50),    /* Name of user */
  16.     user_data    VARCHAR2(80),    /* Customer-defined data */
  17.     CONSTRAINT pk_users PRIMARY KEY (user_id)
  18. );
  19.